home *** CD-ROM | disk | FTP | other *** search
- !!Script
- // Copyright ⌐ 1997-1998 - Modelworks Software
-
- // Insert script helper for:
-
- /**
- @Object: Host
- @Method: saveAll - saves the contents of all open editors. The
- default value of includeUntitledFiles is true.
- @Syntax: saveAll([includeUntitledFiles])
- @Summary: saveAll - saves the contents of all open editors
- */
-
- function DoCommand()
- {
- var editor = getActiveEditor();
- if (editor)
- {
- var selection = editor.getSelection();
- editor.replace("saveAll([includeUntitledFiles])", selection);
- editor.setActive("Insert saveAll");
- }
- }
-
- !!/Script
-